home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Directorty Opus 5 - Magellan 2
/
Opus 5 - Magellan 2.iso
/
Extras
/
HTML_dopus5
/
HTML.dopus5
< prev
next >
Wrap
Text File
|
1979-12-31
|
1KB
|
54 lines
/* Programm: HTML.Dopus5 [25.6.96]
** $VER: HTML.dopus5 1.0 (25.6.96)
**
** Needed: Directory Opus V5.11 (© by Jonathan Potter & GPSoftware)
** AWEB V1.3 (© 1996 by Yvon Rozijn)
**
** Copyright © 1996 Tony Corona (EMail: crown@cybercomm.nl)
** (http://www.cybercomm.nl/~crown)
**
**
**
** Load HTML documents into AWEB with Dopus.
**
** Create new button or filetype, Call as:
** ----------------------------------------------------------------------
** ARexx DOpus5:ARexx/HTML.dopus5 {f}
** ----------------------------------------------------------------------
** Flags: No file quote.
**
** -----------------------------------------
**
** ---------- Path to AWEB V1.3 : --------*/
AWEB = "AmiTCP:AWEB/AWEB"
/*----------- Prefs to use : -------------*/
PREF = "AmiTCP:AWEB/AWeb-WB.prefs"
/*----------------------------------------*/
parse arg document
options results
If Show("P","AWEB.1") Then
address "AWEB.1"
Else Do
address command 'run >nil: <nil: 'AWEB document 'local config' PREF
Exit
End
address aweb.1
open url 'file://localhost/'document
EXIT
end